﻿body {
}
/*HelpOverlay*/

/* Help overlay backdrop */
.help-overlay-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.65);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Croix fermeture */
.help-overlay-panel {
    position: relative; /* 🔑 indispensable */
    background-image: url('/Image/FroisseBeige.webp');
    /* background-color: #f1f1f1;*/
    color: #222;
    border-radius: 14px;
    padding: 24px 28px;
    max-width: 850px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
/* Close button */
.help-overlay-close {
    position: sticky;
    top: 0;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffe5e5;
    color: #c62828;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

    .help-overlay-close:hover {
        color: #8e1b1b;
    }
.overlay-jeu-test {
    font-family: 'Segoe UI', sans-serif;    
    max-width: 800px;
    margin: auto;
    padding: 1rem;
    border-radius: 20px;
    font-weight: bold;
}
/* Sections */
.help-section {
    margin-bottom: 1.2rem;
}

.help-section-title {
    font-weight: bold;
    margin-bottom: 0.4rem;
}
.help-text {
    color: #222;
    line-height: 1.5;
}

.help-text,
.help-list li {
    font-size: 1rem;
    line-height: 1.6;
}

.overlay-domaine-tag {
    display: inline-block;
    padding: 0.15em 0.6em;
    margin: 0 0.3em;
    font-weight: 600;
    font-size: 0.95em;
    color: #0078d8; /* bleu profond */
    background-color: #e6f0ff; /* bleu très doux */
    border-radius: 12px;
    border: 1px solid rgba(11, 61, 145, 0.3);
    white-space: nowrap;
}


@media (max-width: 768px) {
    .help-overlay-panel {
        padding: 18px 16px;
    }

    .help-section-title {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .floating-actions {
        bottom: 24px;
        right: 24px;
    }
}



.help-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
